home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / phpMyAdmin / tbl_printview.php < prev    next >
PHP Script  |  2005-03-06  |  19KB  |  554 lines

  1. <?php
  2. /* $Id: tbl_printview.php,v 2.10 2005/03/06 23:23:46 nijel Exp $ */
  3.  
  4.  
  5. /**
  6.  * Gets the variables sent or posted to this script, then displays headers
  7.  */
  8. $print_view = TRUE;
  9. if (!isset($selected_tbl)) {
  10.     require_once('./libraries/grab_globals.lib.php');
  11.     require_once('./header.inc.php');
  12. }
  13.  
  14. // Check parameters
  15.  
  16. if (!isset($the_tables) || !is_array($the_tables)) {
  17.     $the_tables = array();
  18. }
  19.  
  20. /**
  21.  * Gets the relations settings
  22.  */
  23. require_once('./libraries/relation.lib.php');
  24. require_once('./libraries/transformations.lib.php');
  25. require_once('./libraries/tbl_indexes.lib.php');
  26.  
  27. $cfgRelation  = PMA_getRelationsParam();
  28.  
  29.  
  30. /**
  31.  * Defines the url to return to in case of error in a sql statement
  32.  */
  33. if (isset($table)) {
  34.     $err_url = 'tbl_properties.php?' . PMA_generate_common_url($db, $table);
  35. } else {
  36.     $err_url = 'db_details.php?' . PMA_generate_common_url($db);
  37. }
  38.  
  39.  
  40. /**
  41.  * Selects the database
  42.  */
  43. PMA_DBI_select_db($db);
  44.  
  45.  
  46. /**
  47.  * Multi-tables printview thanks to Christophe GeschΘ from the "MySQL Form
  48.  * Generator for PHPMyAdmin" (http://sourceforge.net/projects/phpmysqlformgen/)
  49.  */
  50. if (isset($selected_tbl) && is_array($selected_tbl)) {
  51.     $the_tables   = $selected_tbl;
  52. } else if (isset($table)) {
  53.     $the_tables[] = $table;
  54. }
  55. $multi_tables     = (count($the_tables) > 1);
  56.  
  57. if ($multi_tables) {
  58.     $tbl_list     = '';
  59.     foreach ($the_tables AS $key => $table) {
  60.         $tbl_list .= (empty($tbl_list) ? '' : ', ')
  61.                   . PMA_backquote(urldecode($table));
  62.     }
  63.     echo '<b>'.  $strShowTables . ': ' . $tbl_list . '</b>' . "\n";
  64.     echo '<hr />' . "\n";
  65. } // end if
  66.  
  67. $tables_cnt = count($the_tables);
  68. $counter    = 0;
  69.  
  70. foreach ($the_tables AS $key => $table) {
  71.     $table = urldecode($table);
  72.     if ($counter + 1 >= $tables_cnt) {
  73.         $breakstyle = '';
  74.     } else {
  75.         $breakstyle = ' style="page-break-after: always;"';
  76.     }
  77.     $counter++;
  78.     echo '<div' . $breakstyle . '>' . "\n";
  79.     echo '<h1>' . $table . '</h1>' . "\n";
  80.  
  81.     /**
  82.      * Gets table informations
  83.      */
  84.     $result       = PMA_DBI_query('SHOW TABLE STATUS LIKE \'' . PMA_sqlAddslashes($table, TRUE) . '\';');
  85.     $showtable    = PMA_DBI_fetch_assoc($result);
  86.     $num_rows     = (isset($showtable['Rows']) ? $showtable['Rows'] : 0);
  87.     $show_comment = (isset($showtable['Comment']) ? $showtable['Comment'] : '');
  88.     PMA_DBI_free_result($result);
  89.  
  90.  
  91.     //  Gets table keys and store them in arrays
  92.     $indexes      = array();
  93.     $indexes_info = array();
  94.     $indexes_data = array();
  95.     $ret_keys = PMA_get_indexes($table, $err_url_0);
  96.  
  97.     PMA_extract_indexes($ret_keys, $indexes, $indexes_info, $indexes_data);
  98.  
  99.     /**
  100.      * Gets fields properties
  101.      */
  102.     $result      = PMA_DBI_query('SHOW FIELDS FROM ' . PMA_backquote($table) . ';', NULL, PMA_DBI_QUERY_STORE);
  103.     $fields_cnt  = PMA_DBI_num_rows($result);
  104.  
  105.     // Check if we can use Relations (Mike Beck)
  106.     if (!empty($cfgRelation['relation'])) {
  107.         // Find which tables are related with the current one and write it in
  108.         // an array
  109.         $res_rel = PMA_getForeigners($db, $table);
  110.  
  111.         if (count($res_rel) > 0) {
  112.             $have_rel = TRUE;
  113.         } else {
  114.             $have_rel = FALSE;
  115.         }
  116.     }
  117.     else {
  118.            $have_rel = FALSE;
  119.     } // end if
  120.  
  121.  
  122.     /**
  123.      * Displays the comments of the table if MySQL >= 3.23
  124.      */
  125.     if (!empty($show_comment)) {
  126.         echo $strTableComments . ': ' . $show_comment . '<br /><br />';
  127.     }
  128.  
  129.     /**
  130.      * Displays the table structure
  131.      */
  132.     ?>
  133.  
  134. <!-- TABLE INFORMATIONS -->
  135. <table width="95%" bordercolorlight="black" border="border" style="border-collapse: collapse; background-color: white">
  136. <tr>
  137.     <th width="50"><?php echo $strField; ?></th>
  138.     <th width="80"><?php echo $strType; ?></th>
  139.     <!--<th width="50"><?php echo $strAttr; ?></th>-->
  140.     <th width="40"><?php echo $strNull; ?></th>
  141.     <th width="70"><?php echo $strDefault; ?></th>
  142.     <!--<th width="50"><?php echo $strExtra; ?></th>-->
  143.     <?php
  144.     echo "\n";
  145.     if ($have_rel) {
  146.         echo '    <th>' . $strLinksTo . '</th>' . "\n";
  147.     }
  148.     if ($cfgRelation['commwork']) {
  149.         echo '    <th>' . $strComments . '</th>' . "\n";
  150.     }
  151.     if ($cfgRelation['mimework']) {
  152.         echo '    <th>MIME</th>' . "\n";
  153.     }
  154.     ?>
  155. </tr>
  156.  
  157.     <?php
  158.     $i = 0;
  159.     while ($row = PMA_DBI_fetch_assoc($result)) {
  160.         $bgcolor = ($i % 2) ?$cfg['BgcolorOne'] : $cfg['BgcolorTwo'];
  161.         $i++;
  162.  
  163.         $type             = $row['Type'];
  164.         // reformat mysql query output - staybyte - 9. June 2001
  165.         // loic1: set or enum types: slashes single quotes inside options
  166.         if (preg_match('@^(set|enum)\((.+)\)$@i', $type, $tmp)) {
  167.             $tmp[2]       = substr(preg_replace('@([^,])\'\'@', '\\1\\\'', ',' . $tmp[2]), 1);
  168.             $type         = $tmp[1] . '(' . str_replace(',', ', ', $tmp[2]) . ')';
  169.             $type_nowrap  = '';
  170.  
  171.             $binary       = 0;
  172.             $unsigned     = 0;
  173.             $zerofill     = 0;
  174.         } else {
  175.             $type_nowrap  = ' nowrap="nowrap"';
  176.             $type         = preg_replace('@BINARY@i', '', $type);
  177.             $type         = preg_replace('@ZEROFILL@i', '', $type);
  178.             $type         = preg_replace('@UNSIGNED@i', '', $type);
  179.             if (empty($type)) {
  180.                 $type     = ' ';
  181.             }
  182.  
  183.             $binary       = stristr($row['Type'], 'binary');
  184.             $unsigned     = stristr($row['Type'], 'unsigned');
  185.             $zerofill     = stristr($row['Type'], 'zerofill');
  186.         }
  187.         $strAttribute     = ' ';
  188.         if ($binary) {
  189.             $strAttribute = 'BINARY';
  190.         }
  191.         if ($unsigned) {
  192.             $strAttribute = 'UNSIGNED';
  193.         }
  194.         if ($zerofill) {
  195.             $strAttribute = 'UNSIGNED ZEROFILL';
  196.         }
  197.         if (!isset($row['Default'])) {
  198.             if ($row['Null'] != '') {
  199.                 $row['Default'] = '<i>NULL</i>';
  200.             }
  201.         } else {
  202.             $row['Default'] = htmlspecialchars($row['Default']);
  203.         }
  204.         $field_name = htmlspecialchars($row['Field']);
  205.         echo "\n";
  206.         ?>
  207. <tr>
  208.     <td width="50" class="print" nowrap="nowrap">
  209.     <?php
  210.     if (isset($pk_array[$row['Field']])) {
  211.         echo '    <u>' . $field_name . '</u> ' . "\n";
  212.     } else {
  213.         echo '    ' . $field_name . ' ' . "\n";
  214.     }
  215.     ?>
  216.     </td>
  217.     <td width="80" class="print"<?php echo $type_nowrap; ?>><?php echo $type; ?><bdo dir="ltr"></bdo></td>
  218.     <!--<td width="50" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap"><?php echo $strAttribute; ?></td>-->
  219.     <td width="40" class="print"><?php echo (($row['Null'] == '') ? $strNo : $strYes); ?> </td>
  220.     <td width="70" class="print" nowrap="nowrap"><?php if (isset($row['Default'])) echo $row['Default']; ?> </td>
  221.     <!--<td width="50" bgcolor="<?php echo $bgcolor; ?>" nowrap="nowrap"><?php echo $row['Extra']; ?> </td>-->
  222.     <?php
  223.     echo "\n";
  224.     if ($have_rel) {
  225.         echo '    <td class="print">';
  226.         if (isset($res_rel[$field_name])) {
  227.             echo htmlspecialchars($res_rel[$field_name]['foreign_table'] . ' -> ' . $res_rel[$field_name]['foreign_field'] );
  228.         }
  229.         echo ' </td>' . "\n";
  230.     }
  231.     if ($cfgRelation['commwork']) {
  232.         echo '    <td class="print">';
  233.         $comments = PMA_getComments($db, $table);
  234.         if (isset($comments[$field_name])) {
  235.             echo htmlspecialchars($comments[$field_name]);
  236.         }
  237.         echo ' </td>' . "\n";
  238.     }
  239.     if ($cfgRelation['mimework']) {
  240.         $mime_map = PMA_getMIME($db, $table, true);
  241.  
  242.         echo '    <td class="print">';
  243.         if (isset($mime_map[$field_name])) {
  244.             echo htmlspecialchars(str_replace('_', '/', $mime_map[$field_name]['mimetype']));
  245.         }
  246.         echo ' </td>' . "\n";
  247.     }
  248.     ?>
  249. </tr>
  250.         <?php
  251.     } // end while
  252.     PMA_DBI_free_result($result);
  253.  
  254.     echo "\n";
  255.     ?>
  256. </table>
  257.  
  258.  
  259.     <?php
  260.     /**
  261.      * Displays indexes
  262.      */
  263.     $index_count = (isset($indexes))
  264.                  ? count($indexes)
  265.                  : 0;
  266.     if ($index_count > 0) {
  267.         echo "\n";
  268.         ?>
  269. <br /><br />
  270.  
  271. <!-- Indexes -->
  272.  <big><?php echo $strIndexes . ':'; ?></big>
  273. <table bordercolorlight="black" border="border" style="border-collapse: collapse; background-color: white">
  274.     <tr>
  275.         <th><?php echo $strKeyname; ?></th>
  276.         <th><?php echo $strType; ?></th>
  277.         <th><?php echo $strCardinality; ?></th>
  278.         <th colspan="2"><?php echo $strField; ?></th>
  279.     </tr>
  280.         <?php
  281.         echo "\n";
  282.         PMA_show_indexes($table, $indexes, $indexes_info, $indexes_data, true, true);
  283.         echo "\n";
  284.         ?>
  285. </table>
  286.         <?php
  287.         echo "\n";
  288.     } // end display indexes
  289.  
  290.  
  291.     /**
  292.      * Displays Space usage and row statistics
  293.      *
  294.      * staybyte - 9 June 2001
  295.      */
  296.     if ($cfg['ShowStats']) {
  297.         $nonisam     = FALSE;
  298.         if (isset($showtable['Type']) && !preg_match('@ISAM|HEAP@i', $showtable['Type'])) {
  299.             $nonisam = TRUE;
  300.         }
  301.         if ($nonisam == FALSE) {
  302.             // Gets some sizes
  303.             $mergetable     = FALSE;
  304.             if (isset($showtable['Type']) && $showtable['Type'] == 'MRG_MyISAM') {
  305.                 $mergetable = TRUE;
  306.             }
  307.             list($data_size, $data_unit)         = PMA_formatByteDown($showtable['Data_length']);
  308.             if ($mergetable == FALSE) {
  309.                 list($index_size, $index_unit)   = PMA_formatByteDown($showtable['Index_length']);
  310.             }
  311.             if (isset($showtable['Data_free']) && $showtable['Data_free'] > 0) {
  312.                 list($free_size, $free_unit)     = PMA_formatByteDown($showtable['Data_free']);
  313.                 list($effect_size, $effect_unit) = PMA_formatByteDown($showtable['Data_length'] + $showtable['Index_length'] - $showtable['Data_free']);
  314.             } else {
  315.                 unset($free_size);
  316.                 unset($free_unit);
  317.                 list($effect_size, $effect_unit) = PMA_formatByteDown($showtable['Data_length'] + $showtable['Index_length']);
  318.             }
  319.             list($tot_size, $tot_unit)           = PMA_formatByteDown($showtable['Data_length'] + $showtable['Index_length']);
  320.             if ($num_rows > 0) {
  321.                 list($avg_size, $avg_unit)       = PMA_formatByteDown(($showtable['Data_length'] + $showtable['Index_length']) / $showtable['Rows'], 6, 1);
  322.             }
  323.  
  324.             // Displays them
  325.             ?>
  326. <br /><br />
  327.  
  328. <table border="0" cellspacing="0" cellpadding="0" class="noborder">
  329. <tr>
  330.  
  331.     <!-- Space usage -->
  332.     <td class="print" valign="top">
  333.          <big><?php echo $strSpaceUsage . ':'; ?></big>
  334.         <table width="100%" bordercolorlight="black" border="border" style="border-collapse: collapse; background-color: white">
  335.         <tr>
  336.             <th><?php echo $strType; ?></th>
  337.             <th colspan="2" align="center"><?php echo $strUsage; ?></th>
  338.         </tr>
  339.         <tr>
  340.             <td class="print" style="padding-right: 10px"><?php echo $strData; ?></td>
  341.             <td align="right" class="print" nowrap="nowrap"><?php echo $data_size; ?></td>
  342.             <td class="print"><?php echo $data_unit; ?></td>
  343.         </tr>
  344.             <?php
  345.             if (isset($index_size)) {
  346.                 echo "\n";
  347.                 ?>
  348.         <tr>
  349.             <td class="print" style="padding-right: 10px"><?php echo $strIndex; ?></td>
  350.             <td align="right" class="print" nowrap="nowrap"><?php echo $index_size; ?></td>
  351.             <td class="print"><?php echo $index_unit; ?></td>
  352.         </tr>
  353.                 <?php
  354.             }
  355.             if (isset($free_size)) {
  356.                 echo "\n";
  357.                 ?>
  358.         <tr style="color: #bb0000">
  359.             <td class="print" style="padding-right: 10px"><?php echo $strOverhead; ?></td>
  360.             <td align="right" class="print" nowrap="nowrap"><?php echo $free_size; ?></td>
  361.             <td class="print"><?php echo $free_unit; ?></td>
  362.         </tr>
  363.         <tr>
  364.             <td class="print" style="padding-right: 10px"><?php echo $strEffective; ?></td>
  365.             <td align="right" class="print" nowrap="nowrap"><?php echo $effect_size; ?></td>
  366.             <td class="print"><?php echo $effect_unit; ?></td>
  367.         </tr>
  368.                 <?php
  369.             }
  370.             if (isset($tot_size) && $mergetable == FALSE) {
  371.                 echo "\n";
  372.                 ?>
  373.         <tr>
  374.             <td class="print" style="padding-right: 10px"><?php echo $strTotalUC; ?></td>
  375.             <td align="right" class="print" nowrap="nowrap"><?php echo $tot_size; ?></td>
  376.             <td class="print"><?php echo $tot_unit; ?></td>
  377.         </tr>
  378.                 <?php
  379.             }
  380.             echo "\n";
  381.             ?>
  382.         </table>
  383.     </td>
  384.  
  385.     <td width="20" class="print"> </td>
  386.  
  387.     <!-- Rows Statistic -->
  388.     <td valign="top">
  389.          <big><?php echo $strRowsStatistic . ':'; ?></big>
  390.         <table width=100% bordercolorlight="black" border="border" style="border-collapse: collapse; background-color: white">
  391.         <tr>
  392.             <th><?php echo $strStatement; ?></th>
  393.             <th align="center"><?php echo $strValue; ?></th>
  394.         </tr>
  395.             <?php
  396.             $i = 0;
  397.             if (isset($showtable['Row_format'])) {
  398.                 $bgcolor = ((++$i%2) ? $cfg['BgcolorTwo'] : $cfg['BgcolorOne']);
  399.                 echo "\n";
  400.                 ?>
  401.         <tr>
  402.             <td class="print"><?php echo ucfirst($strFormat); ?></td>
  403.             <td align="<?php echo $cell_align_left; ?>" class="print" nowrap="nowrap">
  404.                 <?php
  405.                 echo '                ';
  406.                 if ($showtable['Row_format'] == 'Fixed') {
  407.                     echo $strFixed;
  408.                 } else if ($showtable['Row_format'] == 'Dynamic') {
  409.                     echo $strDynamic;
  410.                 } else {
  411.                     echo $showtable['Row_format'];
  412.                 }
  413.                 echo "\n";
  414.                 ?>
  415.             </td>
  416.         </tr>
  417.                 <?php
  418.             }
  419.             if (isset($showtable['Rows'])) {
  420.                 $bgcolor = ((++$i%2) ? $cfg['BgcolorTwo'] : $cfg['BgcolorOne']);
  421.                 echo "\n";
  422.             ?>
  423.         <tr>
  424.             <td class="print"><?php echo ucfirst($strRows); ?></td>
  425.             <td align="right" class="print" nowrap="nowrap">
  426.                 <?php echo number_format($showtable['Rows'], 0, $number_decimal_separator, $number_thousands_separator) . "\n"; ?>
  427.             </td>
  428.         </tr>
  429.                 <?php
  430.             }
  431.             if (isset($showtable['Avg_row_length']) && $showtable['Avg_row_length'] > 0) {
  432.                 $bgcolor = ((++$i%2) ? $cfg['BgcolorTwo'] : $cfg['BgcolorOne']);
  433.                 echo "\n";
  434.                 ?>
  435.         <tr>
  436.             <td class="print"><?php echo ucfirst($strRowLength); ?> ø</td>
  437.             <td class="print" nowrap="nowrap">
  438.                 <?php echo number_format($showtable['Avg_row_length'], 0, $number_decimal_separator, $number_thousands_separator) . "\n"; ?>
  439.             </td>
  440.         </tr>
  441.                 <?php
  442.             }
  443.             if (isset($showtable['Data_length']) && $showtable['Rows'] > 0 && $mergetable == FALSE) {
  444.                 $bgcolor = ((++$i%2) ? $cfg['BgcolorTwo'] : $cfg['BgcolorOne']);
  445.                 echo "\n";
  446.                 ?>
  447.         <tr>
  448.             <td class="print"><?php echo ucfirst($strRowSize); ?> ø</td>
  449.             <td align="right" class="print" nowrap="nowrap">
  450.                 <?php echo $avg_size . ' ' . $avg_unit . "\n"; ?>
  451.             </td>
  452.         </tr>
  453.                 <?php
  454.             }
  455.             if (isset($showtable['Auto_increment'])) {
  456.                 $bgcolor = ((++$i%2) ? $cfg['BgcolorTwo'] : $cfg['BgcolorOne']);
  457.                 echo "\n";
  458.                 ?>
  459.         <tr>
  460.             <td class="print"><?php echo ucfirst($strNext); ?> Autoindex</td>
  461.             <td align="right" class="print" nowrap="nowrap">
  462.                 <?php echo number_format($showtable['Auto_increment'], 0, $number_decimal_separator, $number_thousands_separator) . "\n"; ?>
  463.             </td>
  464.         </tr>
  465.                 <?php
  466.             }
  467.             echo "\n";
  468.  
  469.             if (isset($showtable['Create_time'])) {
  470.                 $bgcolor = ((++$i%2) ? $cfg['BgcolorTwo'] : $cfg['BgcolorOne']);
  471.                 echo "\n";
  472.                 ?>
  473.         <tr>
  474.             <td class="print"><?php echo $strStatCreateTime; ?></td>
  475.             <td align="right" class="print" nowrap="nowrap">
  476.                 <?php echo PMA_localisedDate(strtotime($showtable['Create_time'])) . "\n"; ?>
  477.             </td>
  478.         </tr>
  479.                 <?php
  480.             }
  481.             echo "\n";
  482.  
  483.             if (isset($showtable['Update_time'])) {
  484.                 $bgcolor = ((++$i%2) ? $cfg['BgcolorTwo'] : $cfg['BgcolorOne']);
  485.                 echo "\n";
  486.                 ?>
  487.         <tr>
  488.             <td class="print"><?php echo $strStatUpdateTime; ?></td>
  489.             <td align="right" class="print" nowrap="nowrap">
  490.                 <?php echo PMA_localisedDate(strtotime($showtable['Update_time'])) . "\n"; ?>
  491.             </td>
  492.         </tr>
  493.                 <?php
  494.             }
  495.             echo "\n";
  496.  
  497.             if (isset($showtable['Check_time'])) {
  498.                 $bgcolor = ((++$i%2) ? $cfg['BgcolorTwo'] : $cfg['BgcolorOne']);
  499.                 echo "\n";
  500.                 ?>
  501.         <tr>
  502.             <td class="print"><?php echo $strStatCheckTime; ?></td>
  503.             <td align="right" class="print" nowrap="nowrap">
  504.                 <?php echo PMA_localisedDate(strtotime($showtable['Check_time'])) . "\n"; ?>
  505.             </td>
  506.         </tr>
  507.                 <?php
  508.             }
  509.             echo "\n";
  510.             ?>
  511.         </table>
  512.     </td>
  513. </tr>
  514. </table>
  515.  
  516.             <?php
  517.         } // end if ($nonisam == FALSE)
  518.     } // end if ($cfg['ShowStats'])
  519.  
  520.     echo "\n";
  521.     if ($multi_tables) {
  522.         unset($ret_keys);
  523.         unset($num_rows);
  524.         unset($show_comment);
  525.         echo '<hr />' . "\n";
  526.     } // end if
  527.     echo '</div>' . "\n";
  528.  
  529. } // end while
  530.  
  531.  
  532.  
  533. /**
  534.  * Displays the footer
  535.  */
  536. echo "\n";
  537. ?>
  538. <script type="text/javascript" language="javascript1.2">
  539. <!--
  540. function printPage()
  541. {
  542.     // Do print the page
  543.     if (typeof(window.print) != 'undefined') {
  544.         window.print();
  545.     }
  546. }
  547. //-->
  548. </script>
  549. <?php
  550. echo '<br /><br /> <input type="button" class="print_ignore" style="width: 100px; height: 25px" id="print" value="' . $strPrint . '" onclick="printPage()">' . "\n";
  551.  
  552. require_once('./footer.inc.php');
  553. ?>
  554.